Follow the Money
This lesson you'll build PixelUp's revenue model โ the spreadsheet that tells each creator exactly how much they earned last month, and why.
Import the Revenue Data
Import this lesson's starter.csv into a new Google Sheets tab.
starter.csv from the L2 folder. Choose Replace current sheet and Comma as separator.CPM Rate (ยฃ) and in B1 type 8.00 โ this is our ad rate input. Format B1 as currency.Name Your Input Cell
Before writing any formula, name your CPM Rate cell. This makes every formula readable.
CPM_Rate not CPM Rate.Ad Revenue Formula
Write the formula that calculates how much each creator earns from ads. Use an absolute reference to your CPM Rate cell.
$B$1, you can write:
Sponsorship & Merch Revenue
Add the remaining two revenue streams. These are simpler formulas โ multiplication of two columns in the starter data.
Total Revenue & the Big Test
Bring it all together โ then test whether your model actually works by changing the CPM rate.
Going Further
Finished everything? This extension makes the model more realistic by giving each platform its own CPM rate.
Right now, all creators use the same CPM rate โ which isn't realistic. TikTok CPM is genuinely around ยฃ0.03, not ยฃ8. Improve the model:
- Add three input cells:
YouTube_CPM= ยฃ8.00,TikTok_CPM= ยฃ0.03,Instagram_CPM= ยฃ1.50 - Modify your Ad Revenue formula to use the correct CPM based on each creator's platform
- Hint: you'll need an IF formula โ we cover this in Lesson 3, but try it now:
=IF(B3="YouTube", C3*YouTube_CPM/1000, IF(B3="TikTok", C3*TikTok_CPM/1000, C3*Instagram_CPM/1000)) - How does @CoastlineEats' ad revenue change with a realistic TikTok CPM?
- Add a "Revenue per Subscriber" column: Total Revenue รท Subscribers (you'll need to bring the subscriber data from your L1 sheet)
Revenue Model โ Built!
You've built a real financial model. Next lesson: what happens if one of our creators goes viral?
- How creators earn money from ads (CPM), sponsorships, and merchandise
- What CPM means and how to calculate ad revenue from it
- The difference between relative and absolute cell references
- How to use
$B$1to lock a cell reference in a formula - How to name a cell range in Google Sheets
- How to build a financial model with separate input and calculation areas